home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cli / SED.lha / SED / SED.readme < prev   
Text File  |  2000-10-15  |  6KB  |  155 lines

  1. Short:    Amiga stream editor
  2. Uploader: thor@math.tu-berlin.de (Thomas Richter)
  3. Author:   thor@math.tu-berlin.de (Thomas Richter)
  4. Type:     util/cli
  5. Version:  40.2
  6. Requires: AmigaOs 3.0 or better
  7. ______________________________________________________________________________
  8.  
  9. Purpose of this program:
  10.  
  11.     SED takes an input file, checks each line of this file against a
  12.     pattern supplied on the command line, and generates a new line from
  13.     this pattern match in the destination. This could either mean that
  14.     the matching line is removed completely from the output, replaced
  15.     by a different line, or changed according to the specifications of
  16.     SED.
  17.     
  18.     SED is an approximation of the Unix "stream editor" sed. It is not
  19.     quite as powerful as sed because its command set is currently very
  20.     limited, and it does not support command files. Its pattern syntax
  21.     is different, too. It still looks like "line noise" to me - I didn't
  22.     want to break with this tradition - but it's at least the Amiga kind
  23.     of line noise.
  24.  
  25.     Its pattern matching rules are a superset of the AmigaOs patterns,
  26.     with some additional features like "captured expressions" and more
  27.     powerful "character classes" and "escaping".
  28.  
  29.     SED is useful for automatic processing of text files, e.g. the modi-
  30.     fication of the startup-sequence. SED can also be run as a "filter"
  31.     in which case it reads its input from stdin and prints output to
  32.     stdout. Combine this feature with pipes and you get a very powerful
  33.     text processing tool.
  34.  
  35.     A warning: Pattern matching looks simple, but is full of hard to gasp
  36.     traps. This tool is therefore thought to be for "expert usage". In 
  37.     case you think SED doesn't process your pattern correctly, think
  38.     twice!
  39.  
  40.     For further details, please read the SED.doc.
  41. ______________________________________________________________________________
  42.  
  43. Release 40.2:
  44.  
  45.     Due to an oversight, the character ranges [..-..] were broken.
  46.     Fixed.
  47.     Handling of (..|..) "or-operator" was broken. Fixed.
  48.     Escaping with \ could leave bogus patterns in the pattern stream
  49.     and could have caused non-justified "invalid template" errors.
  50.     Fixed.
  51.  
  52. ______________________________________________________________________________
  53.  
  54. Release 40.1:
  55.  
  56.     The former release used memory pools, but did not check correctly
  57.     whether the corresponding exec functions are available. Required
  58.     and requires Kickstart 3.0.
  59.     Could have forgotten to return "ERROR_NO_FREE_STORE" for some
  60.     out of memory error conditions.
  61.  
  62. ______________________________________________________________________________
  63.  
  64. Release 40.0:
  65.  
  66.     This is the first Aminet release. This is a 40.0 release because
  67.     pattern matching is a very complex buisiness and even though I tested
  68.     this release quite good, I wouldn't be astonished if some flaws still
  69.     remained. Pattern matching logic is astonishing sometimes, so please
  70.     check the documentation first before reporting any "obvious" bugs. The
  71.     obvious bugs should be gone already!
  72.  
  73. ______________________________________________________________________________
  74.  
  75.                          The THOR-Software Licence (v2, 24th June 1998)
  76.  
  77.  
  78. This License applies to the computer programs known as "SED". The "Program", 
  79. below, refers to such program. The "Archive" refers to the package of 
  80. distribution, as prepared by the author of the Program, Thomas Richter. 
  81. Each licensee is addressed as "you".
  82.  
  83.  
  84.  
  85. The Program and the data in the archive are freely distributable
  86. under the restrictions stated below, but are also Copyright (c)
  87. Thomas Richter.
  88.  
  89. Distribution of the Program, the Archive and the data in the Archive by a
  90. commercial organization without written permission from the author to any
  91. third party is prohibited if any payment is made in connection with such
  92. distribution, whether directly (as in payment for a copy of the Program) or
  93. indirectly (as in payment for some service related to the Program, or
  94. payment for some product or service that includes a copy of the Program
  95. "without charge"; these are only examples, and not an exhaustive enumeration
  96. of prohibited activities).
  97.  
  98.  
  99. However, the following methods of distribution
  100. involving payment shall not in and of themselves be a violation of this
  101. restriction:
  102.  
  103.  
  104. (i) Posting the Program on a public access information storage and
  105. retrieval service for which a fee is received for retrieving information
  106. (such as an on-line service), provided that the fee is not
  107. content-dependent (i.e., the fee would be the same for retrieving the same
  108. volume of information consisting of random data).
  109.  
  110.  
  111. (ii) Distributing the Program on a CD-ROM, provided that
  112.  
  113. a) the Archive is reproduced entirely and verbatim on such CD-ROM, including
  114. especially this licence agreement;
  115.  
  116. b) the CD-ROM is made available to the public for a nominal fee only,
  117.  
  118. c) a copy of the CD is made available to the author for free except for
  119. shipment costs, and
  120.  
  121. d) provided further that all information on such CD-ROM is redistributable
  122. for non-commercial purposes without charge.
  123.  
  124.  
  125. Redistribution of a modified version of the Archive, the Program or the
  126. contents of the Archive is prohibited in any way, by any organization,
  127. regardless whether commercial or non-commercial. Everything must be kept
  128. together, in original and unmodified form.
  129.  
  130.  
  131.  
  132.  
  133. Limitations.
  134.  
  135.  
  136. THE PROGRAM IS PROVIDED TO YOU "AS IS", WITHOUT WARRANTY. THERE IS NO
  137. WARRANTY FOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
  138. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  139. PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE
  140. RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD
  141. THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  142. SERVICING, REPAIR OR CORRECTION.
  143.  
  144.  
  145. IF YOU DO NOT ACCEPT THIS LICENCE, YOU MUST DELETE THE PROGRAM, THE ARCHIVE
  146. AND ALL DATA OF THIS ARCHIVE FROM YOUR STORAGE SYSTEM. YOU ACCEPT THIS
  147. LICENCE BY USING OR REDISTRIBUTING THE PROGRAM.
  148.  
  149.  
  150.                                                         Thomas Richter
  151. ______________________________________________________________________________
  152.  
  153. Thomas Richter,
  154.                 Oktober 2000
  155.